home *** CD-ROM | disk | FTP | other *** search
/ Deep Throat Girls 5 / Deep Throat Girls 5.iso / mac / MAC.Dir / 00028_transition.ls < prev    next >
Encoding:
Text File  |  1997-02-09  |  401 b   |  21 lines

  1. on exitFrame
  2.   global tiks, repeet
  3.   when keyDown then nothing
  4.   if repeet = 0 then
  5.     set tiks to the ticks + 70
  6.     set repeet to 1
  7.   end if
  8.   if the ticks > tiks then
  9.     set repeet to 0
  10.     puppetTransition(47)
  11.     cursor(-1)
  12.     set the cursor of sprite 5 to [23, 24]
  13.     set the cursor of sprite 6 to [23, 24]
  14.     preloadMember(74)
  15.     delay(60)
  16.     go(8)
  17.   else
  18.     go(the frame)
  19.   end if
  20. end
  21.